home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE20 / TIPTRIX / LISTING1.PAS next >
Encoding:
Pascal/Delphi Source File  |  1997-03-17  |  312 b   |  17 lines

  1. class procedure TfmAbout.ShowForm(pOwner: TComponent);
  2. begin
  3.   try
  4.     with TfmAbout.Create(pOwner) do begin
  5.       ShowModal;
  6.       Free;
  7.     end
  8.   except
  9.     ErrorMessage('Something is wrong');
  10.   end;
  11. end;
  12.  
  13. procedure TMainForm.AboutClick(Sender: TObject);
  14. begin
  15.   TfmAbout.ShowForm(self);
  16. end;
  17.